home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Programmierung
/
Power-Programmierung (Tewi)(1994).iso
/
magazine
/
pcmagazi
/
1992
/
04
/
stdapp.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-11-19
|
486b
|
33 lines
// stdapp.h RHS 11/1/91
#if !defined(STDAPP_H)
#define STDAPP_H
#include"app.h"
#include"window.h"
#include"keyboard.h"
class StandardApplication : public Application
{
protected:
KeyBoard keyboard;
Screen screen;
public:
StandardApplication(void)
{
}
virtual void InitApp(void)
{
screen.Init();
screen.Paint();
}
~StandardApplication(void)
{
}
};
#endif